@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body { color: #000; font-family: 'Roboto', sans-serif; }

.video-background {
  position: relative;
  width: 100%; /* changed from 100vw to 100% to avoid horizontal overflow */
  height: 60vh;
  min-height: 200px;
  max-height: 500px;
  object-fit: cover;
  margin-right: 0px;
}

nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* changed from 100vw to 100% */
  height: 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(0, 0, 0, 0.7); /* semi-transparent black */
  box-shadow: none;
  z-index: 1000;
  backdrop-filter: blur(6px);
}
nav .logo {
  margin-left: 0;
  color: #ffffff;
}
/* Group containing main logo and optional partner logos */
.logo-group {
  display: flex;
  align-items: center;
  margin-left: 16px; /* keep a little breathing room from the viewport edge */
}
.logo-group .logo img {
  width: 6vw;
  height: 4vw;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.00);
  display: block;
}
nav .nav-links {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1vw;
  margin: 0;
  padding-left: 10vw;
}
nav .nav-link {
  color: #ffffff;
  margin: 0 16px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.2s;;
}
nav .nav-link:hover {
  color: #fa9b2f;
}

@media (max-width: 1080px) {
  nav .nav-links {
    flex-direction: column;
    background: rgba(0,0,0,0.7);
    position: relative;
    top: 70px;
    width: 100vw;
    display: block;
  }
  nav.open .nav-links {
    display: flex;
  }
}

.site-footer {
  background:#000;
  color: #333;
  padding: 40px 0 12px 0;
  margin-top: 48px;
}
.site-footer .footer-inner {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.site-footer .footer-inner.small { grid-template-columns: 1fr 1fr; align-items: center; gap: 8px; }
.site-footer .footer-col h4 { margin-bottom: 12px; color: #fff; }
.site-footer .footer-about p { color: #ddd; max-width: 420px; }
.footer-logo { width: 64px; height: 64px; object-fit: contain; margin-bottom: 12px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: #ddd; text-decoration: none; }
.footer-newsletter-form { display: flex; gap: 8px; align-items: center; }
.footer-newsletter-form input[type="email"] { padding: 10px 12px; border-radius: 8px; border: none; width: 100%; max-width: 320px; }
.subscribe-btn { padding: 10px 16px; border-radius: 8px; background: #fa9b2f; color: #fff; border: none; cursor: pointer; }
.subscribe-note { color: #999; margin-top: 8px; }
.social-links { display: flex; gap: 12px; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.05); color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 12px 0; margin-top: 20px; }
.footer-legal a { color: #bbb; text-decoration: none; margin-left: 8px; }

@media (max-width: 900px) {
  .site-footer .footer-inner { grid-template-columns: 1fr; }
  .site-footer .footer-inner.small { grid-template-columns: 1fr; text-align: center; }
  .footer-newsletter-form { flex-direction: column; align-items: stretch; }
}